home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941221-19950208 / 000386_news@columbia.edu_Wed Feb 1 13:51:11 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06121
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 3 Feb 1995 08:05:27 -0500
  3. Received: by apakabar.cc.columbia.edu id AA26273
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 3 Feb 1995 08:05:25 -0500
  5. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!swiss.ans.net!gatech!pirates!news-feed-1.peachnet.edu!insosf1.infonet.net!solaris.cc.vt.edu!news.mathworks.com!hookup!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Arrow key problems
  9. Message-Id: <1995Feb1.195111.40191@cc.usu.edu>
  10. Date: 1 Feb 95 19:51:11 MDT
  11. References: <1995Feb1.155717@taz>
  12. Organization: Utah State University
  13. Lines: 49
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <1995Feb1.155717@taz>, mn01@taz.acc.uwrf.edu writes:
  17. > I have a user with a CompuAdd 325TFX notebook computer.  It is running DOS 5,
  18. > Windows 3.1 and has PhoenixBIOS A386 Version 1.01.
  19. > I am trying to install MS-DOS Kermit 3.14 on it for dial-in use.  I have
  20. > encountered a strange problem while trying to get the keyboard mappings correct
  21. > however and am looking for enlightenment from the net.
  22. > I want the arrow keys to function as arrow keys, \Kuparr, \Kdnarr, etc. but they
  23. > don't always.  I am using the VT320 emulation.  The initialization file maps
  24. > many of the other "typical" VT keys.
  25. > Kermit senses the notebook as having an 88-key keyboard.  If I do a SHOW KEY
  26. > on the up arrow key as the first command, it will report the following:
  27. >     scan code \328
  28. >     Verb: KP8 \KKP8
  29. > If I then do another SHOW KEY immediately afterwards, doing nothing else
  30. > in-between, I get the following:
  31. >     scan code \4424
  32. >     Verb: uparr \Kuparr
  33. > Similar things will happen if I show the key definition for down arrow, left or
  34. > right.  This happens even if I put the proper SET KEY commands in the
  35. > initialization file.  It seems that kermit ignores them until I do a SHOW KEY.
  36. > This is causing problems since once our users connect, they need the use of the
  37. > arrow keys.  I finally just mapped ALT- some other keys to the arrow functions
  38. > but I really would like to solve the arrow key problems.
  39. > The keyboard on the notebook is, naturally, smaller.  But, it has 12 function
  40. > keys and does have the 6 keys: Insert, Delete, Home, End, Page Up and Page Down.
  41. > The other really weird thing is if I use the DOS commands TYPE file|MORE 
  42. >or EDIT
  43. > file before I run kermit, kermit thinks the keyboard is a 101-key keyboard and
  44. > then the arrow keys work fine!  But, the user of this notebook won't be doing
  45. > those commands so this isn't a real good solution for him...
  46. ----------------
  47.     I'm sure it's not Kermit doing this to you but rather the Bios and
  48. possible TSR helpers in the notebook trying to fake a conventional keyboard
  49. from an unconventional one, and not doing very well at it. About all I can
  50. suggest (until someone has better ideas, hint hint) is try again with the
  51. very least number of drivers and TSRs going, then put them back one by one.
  52. You can also try SET KEY OFF to use DOS rather than the BIOS, but some
  53. key mappings won't come through that extra layer of software. At worst you
  54. could in fact do that TYPE | MORE item on something tiny to fix the machine.
  55.     Joe D.